home *** CD-ROM | disk | FTP | other *** search
- /* _____________________________________________________________________
-
- BadGlobs.h
-
- Copyright © 1993-1995 Onyx Technology - All rights reserved
- _____________________________________________________________________ */
-
- #ifndef _H_BadGlobs
- #define _H_BadGlobs
-
- #ifndef _H_BadAPPL
- #include "BadAPPL.h"
- #endif
- #ifndef _H_QCAPI
- #include "QCAPI.h"
- #endif
-
- #ifdef _DEFINE_GLOBS_ // are we referencing the globals or defining them
- #define ext /* */ // the globals will actually be allocated
- #else
- #define ext extern // space is not actually allocated here
- #endif
-
- #define kThreshold 19 // used in DoTEDialog call for Threshold
-
-
- ext WindowPtr gStatusWindow; // the window for results, status, etc.
- ext MenuHandle gMenus[NUM_MENUS]; // our array of menu handles
- ext QCTestHandle gTestListH; // QC test list
- ext long gTestCnt; // QC test count (# of tests in gTestListH)
- ext TEHandle gTEH; // handle to text edit for status window
- ext ControlHandle gVScroll; // controlhandle to vertical scroll bar
- ext QCStateHandle gQCSavedStateH; // Saved state of QC testing
- ext THz gAppHeap; // zone for the application heap itself.
-
- ext short gLinesInStatus;
-
- ext Boolean gAtleastSys7; // set if we're running atleast 7.0
- ext Boolean gQCInstalled; // set if QC INIT is loaded, else false
-
- #endif //_H_BadGlobs
-